home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / ck.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  3KB  |  125 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the Netscape security libraries.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. #ifndef CK_H
  38. #define CK_H
  39.  
  40. #ifdef DEBUG
  41. static const char CK_CVS_ID[] = "@(#) $RCSfile: ck.h,v $ $Revision: 1.3 $ $Date: 2005/01/20 02:25:45 $";
  42. #endif /* DEBUG */
  43.  
  44. /*
  45.  * ck.h
  46.  *
  47.  * This header file consolidates all header files needed by the source
  48.  * files implementing the NSS Cryptoki Framework.  This makes managing
  49.  * the source files a bit easier.
  50.  */
  51.  
  52. /* Types */
  53.  
  54. #ifndef NSSBASET_H
  55. #include "nssbaset.h"
  56. #endif /* NSSBASET_H */
  57.  
  58. #ifndef NSSCKT_H
  59. #include "nssckt.h"
  60. #endif /* NSSCKT_H */
  61.  
  62. #ifndef NSSCKFT_H
  63. #include "nssckft.h"
  64. #endif /* NSSCKFT_H */
  65.  
  66. #ifndef NSSCKEPV_H
  67. #include "nssckepv.h"
  68. #endif /* NSSCKEPV_H */
  69.  
  70. #ifndef NSSCKFWT_H
  71. #include "nssckfwt.h"
  72. #endif /* NSSCKFWT_H */
  73.  
  74. #ifndef NSSCKMDT_H
  75. #include "nssckmdt.h"
  76. #endif /* NSSCKMDT_H */
  77.  
  78. #ifndef CKT_H
  79. #include "ckt.h"
  80. #endif /* CKT_H */
  81.  
  82. #ifndef CKFWTM_H
  83. #include "ckfwtm.h"
  84. #endif /* CKFWTM_H */
  85.  
  86. /* Prototypes */
  87.  
  88. #ifndef NSSBASE_H
  89. #include "nssbase.h"
  90. #endif /* NSSBASE_H */
  91.  
  92. #ifndef NSSCKG_H
  93. #include "nssckg.h"
  94. #endif /* NSSCKG_H */
  95.  
  96. #ifndef NSSCKFW_H
  97. #include "nssckfw.h"
  98. #endif /* NSSCKFW_H */
  99.  
  100. #ifndef NSSCKFWC_H
  101. #include "nssckfwc.h"
  102. #endif /* NSSCKFWC_H */
  103.  
  104. #ifndef CKFW_H
  105. #include "ckfw.h"
  106. #endif /* CKFW_H */
  107.  
  108. #ifndef CKFWM_H
  109. #include "ckfwm.h"
  110. #endif /* CKFWM_H */
  111.  
  112. #ifndef CKMD_H
  113. #include "ckmd.h"
  114. #endif /* CKMD_H */
  115.  
  116. /* NSS-private */
  117.  
  118. /* nss_ZNEW and the like.  We might want to publish the memory APIs.. */
  119.  
  120. #ifndef BASE_H
  121. #include "base.h"
  122. #endif /* BASE_H */
  123.  
  124. #endif /* CK_H */
  125.